Tracking CSRT and MOSSE#537
Conversation
|
For now, i'm not able to add I'm getting following error when i uncomment corresponding lines I'm not sure if this is related to a specific OpenCV version or if this is related to the implementation. |
|
Thanks for the PR!
Hmm if these trackers have been introduced with a patch version then it would be better yeah. You can simply add the patch version to the cv.version object here.
A quick look in the docs revealed, that psr_threshold has been added with 3.4.4 apparently. Might need a version guard there as well. |
|
Thanks for your feedbacks.
I have added the version checking but also the ci build environments for 3.4.5, 3.4.4 and 3.4.6, and i'm voting to move the default version to 3.4.6, see justadudewhohacks/npm-opencv-build#31 |
|
Great! Looks like you made a small typo in trackerParamTests.js:
|
Ahh didn't notice that one. The docker images do not exist, I have to build them first. For now I would suggest reverting the travis.yml, I will add the CI for the latest builds later on. Other than that, there still seem to be some buld jobs failing. |
|
@justadudewhohack it's ready now ! Thanks for your help |
|
Great stuff. Thank you! |
Implements CSRT and MOSSE trackers.
This needs to be tested by CI on other opencv build since MOSSE and CSRT are only in OpenCV since 3.4.2 and 3.4.1
@justadudewhohacks Should we test for
cv.version.patch > 1 && cv.version.minor > 3or do we considercv.version.minor > 3is enough ?